www.gusucode.com > AspFaq在线帮助系统 V1.0 > AspFaq在线帮助系统 V1.0\code\admin\Html.asp

    <!--#include file="Include.asp"--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>生成HTML--<%=Site_Name%></title>
<link rel="stylesheet" href="Images/Style.css" type="text/css" media="all" />
<script language="javascript" src="../Js/Jquery.js"></script>
<script language="javascript" src="../Js/Form.js"></script>
<script language="javascript" src="../Js/Function.js"></script>
</head>

<body>
<div id="wrap">
<!--#Include file="Head.asp"-->
  <div id="main">
    <h2><span>生成HTML</span></h2>
    <div id="bcmscontent">
        <ul class="post">
          <li><a href="javascript:SetRContent('Html','Html_Do.asp?type=1');">生成首页&amp;留言页</a> | <a href="javascript:SetRContent('Html','Html_Do.asp?type=2');">生成所有分类页</a> | <a href="javascript:SetRContent('Html','Html_Do.asp?type=3');">生成所有帮助页</a> | <a href="javascript:SetRContent('Html','Html_Do.asp?type=4');">生成未生成的帮助页</a></li>
          <li>生成指定分类页面:
            <select name="Helps_Category2">
              <%
sqlstr="select * from [Helps_Category] order by Helps_Category_Order desc,Helps_Category_Id asc"
rs.open sqlstr,conn,1,3
while not rs.eof
%>
              <option value="<%=rs("Helps_Category_Id")%>"<%=Check_Selected(Category,rs("Helps_Category_Id"))%>><span class="explain"><%=rs("Helps_Category_Name")%></span></option>
              <%
  rs.movenext
wend
rs.close
%>
            </select>
            <a href="javascript:SetRContent('Html','Html_Do.asp?type=6&Category='+document.all.Helps_Category2.options[document.all.Helps_Category2.selectedIndex].value);">生成</a>
          </li>
          <li>生成指定分类条目:
            <select name="Helps_Category">
              <%
sqlstr="select * from [Helps_Category] order by Helps_Category_Order desc,Helps_Category_Id asc"
rs.open sqlstr,conn,1,3
while not rs.eof
%>
              <option value="<%=rs("Helps_Category_Id")%>"<%=Check_Selected(Category,rs("Helps_Category_Id"))%>><span class="explain"><%=rs("Helps_Category_Name")%></span></option>
              <%
  rs.movenext
wend
rs.close
%>
            </select>
            <a href="javascript:SetRContent('Html','Html_Do.asp?type=5&Category='+document.all.Helps_Category.options[document.all.Helps_Category.selectedIndex].value);">生成</a>
          </li>
      </ul>
      <div id="Html">
        <p>生成提示框</p>
      </div>
  </div>
</div>
<!--#Include file="Foot.asp"-->
<!--#Include file="Show_Go.asp"-->
</div>
</body>
</html>